home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2008 April / PCgo 2008-04 (DVD).iso / interface / contents / demoversionen_3846 / 13664 / files / Data1.cab / splpage.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-10-16  |  1.4 KB  |  49 lines

  1. /******************************************************************/
  2. /*                                                                */
  3. /*                      TurboCAD for Windows                      */
  4. /*                   Copyright (c) 1993 - 2001                    */
  5. /*             International Microcomputer Software, Inc.         */
  6. /*                            (IMSI)                              */
  7. /*                      All rights reserved.                      */
  8. /*                                                                */
  9. /******************************************************************/
  10.  
  11. // SplPage.h : header file
  12. //
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CSplinePage dialog
  16.  
  17. class CSplinePage : public CDialog
  18. {
  19. // Construction
  20. public:
  21.     CSplinePage(CWnd* pParent = NULL);   // standard constructor
  22.  
  23. // Dialog Data
  24.     //{{AFX_DATA(CSplinePage)
  25.     enum { IDD = IDD_PP_SPLINE };
  26.     UINT    m_nSegments;
  27.     BOOL    m_bControlPoints;
  28.     BOOL    m_bFrame;
  29.     BOOL    m_bSmoothing;
  30.     //}}AFX_DATA
  31.  
  32.  
  33. // Overrides
  34.     // ClassWizard generated virtual function overrides
  35.     //{{AFX_VIRTUAL(CSplinePage)
  36.     protected:
  37.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  38.     //}}AFX_VIRTUAL
  39.  
  40. // Implementation
  41. protected:
  42.  
  43.     // Generated message map functions
  44.     //{{AFX_MSG(CSplinePage)
  45.         // NOTE: the ClassWizard will add member functions here
  46.     //}}AFX_MSG
  47.     DECLARE_MESSAGE_MAP()
  48. };
  49.